home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / CODE / Chap02 / GdiDemo1 / GdiDemo1.h < prev    next >
C/C++ Source or Header  |  1996-04-05  |  700b  |  37 lines

  1. //***********************************************************************
  2. //
  3. //  GdiDemo1.h
  4. //
  5. //***********************************************************************
  6.  
  7. class CMyApp : public CWinApp
  8. {
  9. public:
  10.     virtual BOOL InitInstance ();
  11. };
  12.  
  13. class CMainWindow : public CFrameWnd
  14. {
  15. private:
  16.     int m_cxChar;
  17.     int m_cyChar;
  18.  
  19.     void ShowPenStyles (CDC*, int, int);
  20.     void ShowPenWidths (CDC*, int, int);
  21.     void ShowBrushStyles (CDC*, int, int);
  22.  
  23. public:
  24.     CMainWindow ();
  25.  
  26. protected:
  27.     afx_msg int OnCreate (LPCREATESTRUCT);
  28.     afx_msg void OnPaint ();
  29.  
  30.     DECLARE_MESSAGE_MAP ()
  31. };
  32.  
  33. struct STYLES {
  34.     int nStyle;
  35.     char szStyleName[16];
  36. };
  37.